home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / wiggi_wa.swf / scripts / DefineSprite_242 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  479 b   |  16 lines

  1. function onEnterFrame()
  2. {
  3.    if(this.hitTest(_parent._parent._parent.STAGE))
  4.    {
  5.       if(this.hitTest(_parent._parent.HERO.body))
  6.       {
  7.          _parent._parent.function_newParticle(this._x,this._y,"Class_Particle",5);
  8.          _parent._parent._parent.STAGE.newSound("Sound_Fruit");
  9.          _parent._parent.itemCollect = _parent._parent.itemCollect + 1;
  10.          this.swapDepths(0);
  11.          this.removeMovieClip();
  12.       }
  13.    }
  14. }
  15. gotoAndStop(random(6) + 1);
  16.